home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / pascal / pcxkt3.zip / CLIPSHOW.DOC < prev    next >
Text File  |  1991-12-30  |  2KB  |  56 lines

  1. ===========================================================================
  2.  
  3.                                   CLIPSHOW
  4.  
  5.                              by Peter Donnelly
  6.                               1301 Ryan Street
  7.                                 Victoria BC
  8.                                Canada V8T 4Y8
  9.  
  10. ===========================================================================
  11.  
  12. This little program is for reviewing your collection of BGI clip art; that
  13. is, image files created with CLIP or a similar program and suited for use 
  14. with the PutImage procedure/function in Turbo Pascal and Turbo C.
  15.  
  16. To run the program, enter a filespec on the command line. A directory path
  17. and the usual wildcards are accepted.
  18.  
  19. Optionally you may specify a palette file as the second argument. It is
  20. assumed that this file is in the same directory as the image file(s); if
  21. you don't specify an extension, ".PAL" is appended. If you don't specify a
  22. palette at all, the program will attempt to match each image file with a
  23. ".PAL" file; for example, it will try to display "ROSE.IM" with the color
  24. data from a file called "ROSE.PAL". If there is no matching palette file,
  25. or if it is the wrong type for the present display mode, the default colors
  26. are used. (See CLIP.DOC for more information on palette files.)
  27.  
  28. By default the program will run in VGA 640x480 resolution if your system
  29. supports it, or in EGA 640x350 otherwise. You can force it into EGA mode by
  30. entering "/e" on the command line as the last argument.
  31.  
  32. EXAMPLES:
  33. ---------
  34.  
  35.    C:>clipshow daisy
  36.  
  37. The program will display "DAISY" from the current directory and will set
  38. the colors from "DAISY.PAL" if that palette file exists and is the right
  39. type for the default display mode.
  40.  
  41.    C:>clipshow \images\*.im blossoms /e
  42.  
  43. The program will display all files in C:\IMAGES that have the extension
  44. ".IM", using the palette file "BLOSSOMS.PAL" from the same directory, and
  45. will run in EGA mode.
  46.  
  47. The program looks for any BGI-format image files that match the filespec.
  48. To weed out non-image files, CLIPSHOW checks the file size against the image
  49. size calculated from the first two words in the file; so it will not read a
  50. file that has been appended to.
  51.  
  52. To proceed to the next image, strike <PgDn> or <Enter>. To quit the
  53. program, strike <Esc>, <Alt-X>, or <F10>.
  54.  
  55. ===========================================================================
  56.